home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / util / boot / bootcontroller.lha / BootController / Install < prev    next >
Text File  |  1995-10-31  |  1KB  |  60 lines

  1. ; Installation script for BootController
  2.  
  3. (set @default-dest ("C:"))
  4.  
  5. (transcript "Installing BootController 2.0")
  6.  
  7. (set processor
  8.         (askchoice
  9.             (help @askchoice-help)
  10.             (prompt "Which processor version to install ?")
  11.             (choices "68000"
  12.                      "68020 +"
  13.                      )
  14.             (default 1)
  15.         )
  16. )
  17.  
  18. (if (= processor 0)
  19.     (copyfiles
  20.             (source "68000/BootController")
  21.             (dest "C:")
  22.     )
  23. )
  24.  
  25. (if (= processor 1)
  26.     (copyfiles
  27.             (source "68020/BootController")
  28.             (dest "C:")
  29.     )
  30. )
  31.  
  32. (set docsdir
  33.         (askdir
  34.                 (help @askdir-help)
  35.                 (prompt "Where would you like the guide file ?")
  36.                 (default "Guides:")
  37.         )
  38. )
  39.  
  40. (copyfiles
  41.       (source "BootController.guide")
  42.       (dest docsdir)
  43. )
  44.  
  45. (makedir "Fonts:WB_Font")
  46.  
  47. (copyfiles
  48.       (source "Fonts/WB_Font/8")
  49.       (dest "Fonts:WB_Font/")
  50. )
  51.  
  52. (copyfiles
  53.       (source "Fonts/WB_Font.font")
  54.       (dest "Fonts:")
  55. )
  56.  
  57. (transcript "Installation of BootController 2.0 complete")
  58.  
  59. (exit 'Please read the guide file for the next step.')
  60.